home *** CD-ROM | disk | FTP | other *** search
- /*
- * OpusAWebFTP.dopus5
- * $VER: OpusAWebFTP.rexx 1.2 (14.5.96)
- *
- * Copy to your Dopus5:Arexx directory
- * Add these lines to the Setting/Network 3: External programs
- *
- * Command: Sys:Rexxc/RX
- * Arguments: Dopus5:Arexx/OpusAWebFTP.dopus5 %s %s
- */
-
- address dopus.1
-
- if ~show('P','DOPUS.1') then exit 20
-
- parse arg host dir .
-
- if host ~= '' then do
- dopus front
- if dir ~= '' then command ftpconnect host 'dir' dir
- else command ftpconnect host
- end
-
- exit